home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / a-storio.ads < prev    next >
Text File  |  1996-01-30  |  3KB  |  56 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       A D A . S T O R A G E _ I O                        --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.6 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25.  
  26. with Ada.IO_Exceptions;
  27. with System.Storage_Elements;
  28.  
  29. generic
  30.    type Element_Type is private;
  31.  
  32. package Ada.Storage_IO is
  33. pragma Preelaborate (Storage_IO);
  34.  
  35.    Buffer_Size : constant System.Storage_Elements.Storage_Count :=
  36.       (Element_Type'Size + System.Storage_Unit - 1) / System.Storage_Unit;
  37.  
  38.    subtype Buffer_Type is
  39.      System.Storage_Elements.Storage_Array (1 .. Buffer_Size);
  40.  
  41.    ---------------------------------
  42.    -- Input and Output Operations --
  43.    ---------------------------------
  44.  
  45.    procedure Read  (Buffer : in  Buffer_Type; Item : out Element_Type);
  46.  
  47.    procedure Write (Buffer : out Buffer_Type; Item : in  Element_Type);
  48.  
  49.    ----------------
  50.    -- Exceptions --
  51.    ----------------
  52.  
  53.    Data_Error : exception renames IO_Exceptions.Data_Error;
  54.  
  55. end Ada.Storage_IO;
  56.